home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-11-16 | 1.4 KB | 78 lines | [TEXT/MPS ] |
- /*
-
- Blackout.r - Resources for a simple screen Blackout that runs as a MultiFinder
- application. Is typically launched by Lunarmobiscuit's
- Darkness MultiFinder screen saver program.
-
- copyright © 1989 by Tom Dowdy
- All rights reserved
-
-
- Modifications
- Aug 5 1989 TED basic fade working as standalone code
- Nov 30 1989 TED file converted to a standalone application
-
-
- */
- #include "Types.r"
- #include "SysTypes.r"
-
- /* A single menu, which MUST be here for MultiFinder to be able to quit */
- resource 'MENU' (1, preload) {
- 1, textMenuProc,
- 0b0000000000000000000000000000001,
- enabled, apple,
- {
- "Quit",
- noicon, nokey, nomark, plain
- }
- };
-
- /* ------------------------------------------------------------------------ */
- /* Version information */
-
- resource 'vers' (1) {
- 0x02,
- 0x01,
- release,
- 0x00,
- verUS,
- "2.1",
- "DarkSide Faders 2.1"
- };
-
- resource 'vers' (2) {
- 0x02,
- 0x01,
- release,
- 0x06,
- verUS,
- "2.1",
- "Dark Side of the Mac 2.1"
- };
- /* ------------------------------------------------------------------------ */
-
- /* The size resource for our Blackout */
- resource 'SIZE' (-1) {
- dontSaveScreen,
- acceptSuspendResumeEvents,
- enableOptionSwitch,
- canBackground,
- multiFinderAware,
- backgroundAndForeground,
- dontGetFrontClicks,
- ignoreChildDiedEvents,
- is32BitCompatible,
- reserved,
- reserved,
- reserved,
- reserved,
- reserved,
- reserved,
- reserved,
- 32*1024,
- 32*1024
- };
-
-
-